iconv คือ คำสั่งสำหรับการแปลงข้อมูล ตัวแปร และข้อความต่าง ๆ ให้ออกมาในรูปแบบ Character Set ที่ต้องการ เช่น UTF-8, TIS-620 หรือ Windows-874
ภาพรวมของคำสั่ง iconv
1. Parameter ตัวแรก คือ ชุดอักขระเดิม
2. Parameter ตัวที่สอง คือ ชุดอักขระที่ต้องการแสดงผล
3. Parameter ตัวที่สาม คือ ตัวแปร หรือข้อความที่ต้องการแปลง Character Set
ตัวอย่างโปรแกรม
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?
$message = "รับทำเว็บ รับเขียนเว็บ เรียนเขียนโปรแกรม";
$tis620 = iconv("utf-8", "tis-620", $message );
$utf8 = iconv("tis-620", "utf-8", $tis620 );
echo "Page charset=utf-8";
echo "<br/>";
echo "Convert from UTF-8 to TIS-620 = ".$tis620;
echo "<br/>";
echo "Convert from TIS-620 to UTF-8 = ".$utf8;
?>
</body>
</html>
ผลลัพธ์
Page charset=utf-8
Convert from UTF-8 to TIS-620 = �Ѻ����� �Ѻ��¹��� ���¹��¹�����
Convert from TIS-620 to UTF-8 = รับทำเว็บ รับเขียนเว็บ เรียนเขียนโปรแกรม